https://github.com/callicoder/spring-boot-react-oauth2-social-login-demo 의 프로젝트를 참고하여 소셜로그인 과정을 정리해보았다. GitHub - callicoder/spring-boot-react-oauth2-social-login-demo: Spring Boot React OAuth2 Social Login with Google, Facebook, and Spring Boot React OAuth2 Social Login with Google, Facebook, and Github - GitHub - callicoder/spring-boot-react-oauth2-social-login-demo: Spring Boot React OAuth2 So..
실행할 자바 프로그램 실행할 프로그램은 1분마다 현재 시각을 알려주는 프로그램이다. import java.time.LocalDateTime; import java.time.format.DateTimeFormatter; public class PrintTime { public static void main(String[] args) throws InterruptedException { LocalDateTime today = LocalDateTime.now(); String formatedNow = today.format(DateTimeFormatter.ofPattern("현재 시각: HH시 mm분 ss초")); System.out.println(formatedNow); } } 코드가 준비 되었다면 cmd ..